home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / string / RCS / strtok.c,v < prev    next >
Text File  |  1989-03-22  |  2KB  |  92 lines

  1. head     1.1;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.1
  10. date     89.03.22.16.08.00;  author rab;  state Exp;
  11. branches ;
  12. next     ;
  13.  
  14.  
  15. desc
  16. @@
  17.  
  18.  
  19.  
  20. 1.1
  21. log
  22. @Initial revision
  23. @
  24. text
  25. @/* 
  26.  * strtok.c --
  27.  *
  28.  *    Source code for the "strtok" library routine.
  29.  *
  30.  * Copyright 1988 Regents of the University of California
  31.  * Permission to use, copy, modify, and distribute this
  32.  * software and its documentation for any purpose and without
  33.  * fee is hereby granted, provided that the above copyright
  34.  * notice appear in all copies.  The University of California
  35.  * makes no representations about the suitability of this
  36.  * software for any purpose.  It is provided "as is" without
  37.  * express or implied warranty.
  38.  */
  39.  
  40. #ifndef lint
  41. static char rcsid[] = "$Header$";
  42. #endif
  43.  
  44. #ifndef __STDC__
  45. #define const
  46. #endif
  47.  
  48. #include <string.h>
  49.  
  50. /*
  51.  *----------------------------------------------------------------------
  52.  *
  53.  * strtok --
  54.  *
  55.  *      Split a string up into tokens
  56.  *
  57.  * Results:
  58.  *      If the first argument is non-NULL then a pointer to the
  59.  *      first token in the string is returned.  Otherwise the
  60.  *      next token of the previous string is returned.  If there
  61.  *      are no more tokens, NULL is returned.
  62.  *
  63.  * Side effects:
  64.  *    Overwrites the delimiting character at the end of each token
  65.  *      with '\0'.
  66.  *
  67.  *----------------------------------------------------------------------
  68.  */
  69.  
  70. char *
  71. strtok(s, delim)
  72.     char *s;            /* string to search for tokens */
  73.     const char *delim;  /* delimiting characters */
  74. {
  75.     static char *lasts;
  76.     register int ch;
  77.  
  78.     if (s == 0)
  79.     s = lasts;
  80.     do {
  81.     if ((ch = *s++) == '\0')
  82.         return 0;
  83.     } while (strchr(delim, ch));
  84.     --s;
  85.     lasts = s + strcspn(s, delim);
  86.     if (*lasts != 0)
  87.     *lasts++ = 0;
  88.     return s;
  89. }
  90.  
  91. @
  92.